home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / topware / pspad / pspad450inst_cz.exe / {app} / Template / Delphi console application.pas < prev    next >
Pascal/Delphi Source File  |  2003-08-14  |  882b  |  28 lines

  1. { *************************************************************************** }
  2. {                                                                             }
  3. {   Created by:                                                               }
  4. {   Short description                                                         }
  5. {   Last update: 31.10.2001                                                   }
  6. {   Copyright ...                                                             }
  7. {                                                                             }
  8. { *************************************************************************** }
  9.  
  10. program MyProg;
  11.  
  12. {$APPTYPE CONSOLE}
  13.  
  14. uses Classes, Windows, SysUtils;
  15.  
  16. { variable definition here }
  17. var
  18.  
  19. function Init()
  20. begin
  21.   { init kode here or delete it :-) }
  22. end;
  23.  
  24. begin
  25.   Init;
  26.   { program code here }
  27. end;
  28.